home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / nss / secoid.h < prev    next >
C/C++ Source or Header  |  2006-04-20  |  4KB  |  130 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is the Netscape security libraries.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1994-2000
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. #ifndef _SECOID_H_
  38. #define _SECOID_H_
  39. /*
  40.  * secoid.h - public data structures and prototypes for ASN.1 OID functions
  41.  *
  42.  * $Id: secoid.h,v 1.6 2004/04/25 15:03:18 gerv%gerv.net Exp $
  43.  */
  44.  
  45. #include "plarena.h"
  46.  
  47. #include "seccomon.h"
  48. #include "secoidt.h"
  49. #include "secasn1t.h"
  50.  
  51. SEC_BEGIN_PROTOS
  52.  
  53. extern const SEC_ASN1Template SECOID_AlgorithmIDTemplate[];
  54.  
  55. /* This functions simply returns the address of the above-declared template. */
  56. SEC_ASN1_CHOOSER_DECLARE(SECOID_AlgorithmIDTemplate)
  57.  
  58. /*
  59.  * OID handling routines
  60.  */
  61. extern SECOidData *SECOID_FindOID( const SECItem *oid);
  62. extern SECOidTag SECOID_FindOIDTag(const SECItem *oid);
  63. extern SECOidData *SECOID_FindOIDByTag(SECOidTag tagnum);
  64. extern SECOidData *SECOID_FindOIDByMechanism(unsigned long mechanism);
  65.  
  66. /****************************************/
  67. /*
  68. ** Algorithm id handling operations
  69. */
  70.  
  71. /*
  72. ** Fill in an algorithm-ID object given a tag and some parameters.
  73. **     "aid" where the DER encoded algorithm info is stored (memory
  74. **       is allocated)
  75. **    "tag" the tag number defining the algorithm 
  76. **    "params" if not NULL, the parameters to go with the algorithm
  77. */
  78. extern SECStatus SECOID_SetAlgorithmID(PRArenaPool *arena, SECAlgorithmID *aid,
  79.                    SECOidTag tag, SECItem *params);
  80.  
  81. /*
  82. ** Copy the "src" object to "dest". Memory is allocated in "dest" for
  83. ** each of the appropriate sub-objects. Memory in "dest" is not freed
  84. ** before memory is allocated (use SECOID_DestroyAlgorithmID(dest, PR_FALSE)
  85. ** to do that).
  86. */
  87. extern SECStatus SECOID_CopyAlgorithmID(PRArenaPool *arena, SECAlgorithmID *dest,
  88.                     SECAlgorithmID *src);
  89.  
  90. /*
  91. ** Get the tag number for the given algorithm-id object.
  92. */
  93. extern SECOidTag SECOID_GetAlgorithmTag(SECAlgorithmID *aid);
  94.  
  95. /*
  96. ** Destroy an algorithm-id object.
  97. **    "aid" the certificate-request to destroy
  98. **    "freeit" if PR_TRUE then free the object as well as its sub-objects
  99. */
  100. extern void SECOID_DestroyAlgorithmID(SECAlgorithmID *aid, PRBool freeit);
  101.  
  102. /*
  103. ** Compare two algorithm-id objects, returning the difference between
  104. ** them.
  105. */
  106. extern SECComparison SECOID_CompareAlgorithmID(SECAlgorithmID *a,
  107.                        SECAlgorithmID *b);
  108.  
  109. extern PRBool SECOID_KnownCertExtenOID (SECItem *extenOid);
  110.  
  111. /* Given a tag number, return a string describing it.
  112.  */
  113. extern const char *SECOID_FindOIDTagDescription(SECOidTag tagnum);
  114.  
  115. /* Add a dynamic SECOidData to the dynamic OID table.
  116. ** Routine copies the src entry, and returns the new SECOidTag.
  117. ** Returns SEC_OID_INVALID if failed to add for some reason.
  118. */
  119. extern SECOidTag SECOID_AddEntry(const SECOidData * src);
  120.  
  121. /*
  122.  * free up the oid data structures.
  123.  */
  124. extern SECStatus SECOID_Shutdown(void);
  125.  
  126.  
  127. SEC_END_PROTOS
  128.  
  129. #endif /* _SECOID_H_ */
  130.